From 4053ee0cca04502280df24554292d43a205c9f67 Mon Sep 17 00:00:00 2001 From: Lapo Calamandrei Date: Wed, 16 Jul 2014 19:35:29 +0200 Subject: [PATCH] GtkStackSwitcher: center the button child Set button child halign to GTK_ALIGN_CENTER since I need it to style the needs-attention class, see: https://bugzilla.gnome.org/show_bug.cgi?id=707153 --- gtk/gtkstackswitcher.c | 1 + 1 file changed, 1 insertion(+) diff --git a/gtk/gtkstackswitcher.c b/gtk/gtkstackswitcher.c index d5b7ef1f89..418f2fe8ef 100644 --- a/gtk/gtkstackswitcher.c +++ b/gtk/gtkstackswitcher.c @@ -137,6 +137,7 @@ rebuild_child (GtkWidget *self, if (button_child) { + gtk_widget_set_halign (GTK_WIDGET (button_child), GTK_ALIGN_CENTER); gtk_widget_show_all (button_child); gtk_container_add (GTK_CONTAINER (self), button_child); } -- 2.30.2